net/netip.uint128.lo (field)
27 uses
net/netip (current package)
netip.go#L352: return uint8(ip.addr.lo >> ((3 - i) * 8))
netip.go#L425: lo1, lo2 := ip.addr.lo, ip2.addr.lo
netip.go#L458: return ip.Is6() && ip.addr.hi == 0 && ip.addr.lo>>32 == 0xffff
netip.go#L533: return ip.addr.hi == 0 && ip.addr.lo == 1
netip.go#L676: bePutUint64(a16[8:], ip.addr.lo)
netip.go#L685: bePutUint32(a4[:], uint32(ip.addr.lo))
netip.go#L701: bePutUint32(ret[:], uint32(ip.addr.lo))
netip.go#L706: bePutUint64(ret[8:], ip.addr.lo)
netip.go#L716: if uint32(ip.addr.lo) == 0 {
netip.go#L733: if uint32(ip.addr.lo) == 0 {
netip.go#L984: bePutUint32(b, uint32(ip.addr.lo))
netip.go#L989: bePutUint64(b[8:], ip.addr.lo)
netip.go#L1347: return uint32((ip.addr.lo^p.ip.addr.lo)>>((32-p.Bits())&63)) == 0
uint128.go#L15: lo uint64
uint128.go#L29: func (u uint128) isZero() bool { return u.hi|u.lo == 0 }
uint128.go#L33: return uint128{u.hi & m.hi, u.lo & m.lo}
uint128.go#L38: return uint128{u.hi ^ m.hi, u.lo ^ m.lo}
uint128.go#L43: return uint128{u.hi | m.hi, u.lo | m.lo}
uint128.go#L48: return uint128{^u.hi, ^u.lo}
uint128.go#L53: lo, borrow := bits.Sub64(u.lo, 1, 0)
uint128.go#L59: lo, carry := bits.Add64(u.lo, 1, 0)
uint128.go#L68: return [2]*uint64{&u.hi, &u.lo}
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |